From 91c2dba33797118f45cdc5625029d2a1115abb5a Mon Sep 17 00:00:00 2001 From: Alastair Tse Date: Fri, 6 Oct 2006 11:57:16 +0100 Subject: [PATCH] [XENAPI] Added hard shutdown (aka. vm-destroy) Signed-off-by: Alastair Tse --- tools/python/scripts/xapi.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tools/python/scripts/xapi.py b/tools/python/scripts/xapi.py index 411600044e..41f10aca19 100644 --- a/tools/python/scripts/xapi.py +++ b/tools/python/scripts/xapi.py @@ -37,6 +37,7 @@ COMMANDS = { 'vbd-create': (' ', 'Create VBD attached to domname'), 'vif-create': (' ', 'Create VIF attached to domname'), 'vm-delete': ('', 'Delete VM'), + 'vm-destroy': ('', 'Hard shutdown a VM with name'), } class OptionError(Exception): @@ -141,6 +142,16 @@ def xapi_vm_shutdown(*args): success = execute(server.VM.clean_shutdown, session, vm_uuid) print 'Done.' +def xapi_vm_destroy(*args): + if len(args) < 1: + raise OptionError("No Domain name specified.") + + server, session = _connect() + vm_uuid = execute(server.VM.get_by_label, session, args[0]) + print 'Shutting down VM with force %s (%s)' % (args[0], vm_uuid) + success = execute(server.VM.hard_shutdown, session, vm_uuid) + print 'Done.' + def xapi_vbd_create(*args): if len(args) < 2: raise OptionError("Configuration file not specified") -- 2.30.2